Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

dnsdist: Fix TCP with Fast Open requested but unsupported #5454

Merged

Conversation

rgacogne
Copy link
Member

Short description

If tcpFastOpen is set on a backend, we used to skip the connect() call regardless of MSG_FASTOPEN availability. We then tried to call sendmsg() (without MSG_FASTOPEN) on an unconnected TCP socket, which failed.

Fixes #5452.

Checklist

I have:

  • read the CONTRIBUTING.md document
  • compiled and tested this code
  • included documentation (including possible behaviour changes)
  • documented the code
  • added or modified regression test(s)
  • added or modified unit test(s)

If `tcpFastOpen` is set on a backend, we used to skip the
`connect()` call regardless of `MSG_FASTOPEN` availability.
We then tried to call `sendmsg()` (without `MSG_FASTOPEN`)
on an unconnected TCP socket, which failed.
@rgacogne rgacogne added this to the dnsdist-1.2.0 milestone Jun 23, 2017
@pieterlexis pieterlexis merged commit df877d5 into PowerDNS:master Jun 27, 2017
@rgacogne rgacogne deleted the dnsdist-tcp-fastopen-not-available branch June 27, 2017 10:07
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

TCP communication error when tcpFastOpen=true
2 participants